home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
database
/
cbase103
/
blkio
/
bool.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-23
|
322 b
|
17 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "@(#)bool.h 1.5 - 91/09/23" */
/* boolean definitions */
#ifndef BOOL_H /* prevent multiple includes */
#define BOOL_H
typedef unsigned char bool;
#define TRUE ((bool)1)
#define FALSE ((bool)0)
#endif /* #ifndef BOOL_H */